home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / c_course.zip / ONEINT.C < prev    next >
Text File  |  1989-12-30  |  256b  |  10 lines

  1. main()
  2. {
  3. int index;
  4.    index = 13;
  5.    printf("The value of the index is %d\n",index);
  6.    index = 27;
  7.    printf("The value of the index is %d\n",index);
  8.    index = 10;
  9.    printf("The value of the index is %d\n",index);
  10. }